home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -seriously_amiga- / programming / other / wild / support / wilf / firsttry / inlinefuncdemo.c < prev    next >
C/C++ Source or Header  |  1999-01-25  |  112b  |  17 lines

  1.  
  2. // not works !
  3.  
  4. void main()
  5. {
  6.  int a,b;
  7.  b=1;
  8.  
  9.  a={if (b&1)
  10.      return(0);
  11.     else
  12.      return(1);
  13.    }
  14.  
  15. }
  16.  
  17.